home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Revista CD Expert 8
/
Revista CD Expert nº 08 CD1.iso
/
Utilitarios
/
Som&Video
/
Awave
/
Uninst.bat
< prev
Wrap
DOS Batch File
|
1999-01-22
|
1KB
|
56 lines
@echo off
cd %1
cls
echo -------------------------------------------------------------------------------- Awave uninstallation procedure FMJ-Software --------------------------------------------------------------------------------
echo.
echo Uninstalling...
rem ** Clean up the registry **
if exist awave.exe goto runexe
echo Error: Could not find Awave.exe
echo.
echo Uninstallation aborted!
goto end
:runexe
echo Cleaning up the registry...
dir > awblock
awave.exe -UNINSTALL
:wait
if exist awblock goto wait
rem ** Delete files? **
if not exist awdel goto nodel
echo Deleting files...
del awdel
:retry
del awave.*
if exist awave.exe goto retry
if exist awave.gid attrib -h awave.gid
if exist awave.gid del awave.gid
if exist setup.exe del setup.exe
if exist aw2wf16.exe del aw2wf16.exe
if exist file_id.diz del file_id.diz
del *.txt
echo.
echo Done!
echo.
echo.
echo.
echo.
echo.
echo.
echo.
echo.
del uninst.bat
goto end
:nodel
echo.
echo Done! (No files deleted).
echo.
:end